home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / pdsrt212.zip / MAKEFILE < prev    next >
Text File  |  1990-06-19  |  418b  |  17 lines

  1. SWITCHES= -w -mc -N -Z -O -G -f-
  2.  
  3. pdsort.exe:    pdsort.obj merge.obj isdev.obj queue.obj makefile
  4.     tcc $(SWITCHES) pdsort.obj merge.obj isdev.obj queue.obj
  5.  
  6. pdsort.obj:    pdsort.c queue.h makefile
  7.     tcc -c $(SWITCHES) pdsort
  8.  
  9. merge.obj:    merge.c queue.h makefile
  10.     tcc -c $(SWITCHES) merge
  11.  
  12. isdev.obj:    isdev.c makefile
  13.     tcc -c $(SWITCHES) isdev
  14.  
  15. queue.obj:    queue.c queue.h makefile
  16.     tcc -c $(SWITCHES) queue
  17.